| 6 | |
| 7 | === How do I use AIM, MSN, Yahoo!, Jabber/XMPP, ICQ, or any other protocol? === |
| 8 | Use the Account Editor (Accounts->Add/Edit) to add the account of the appropriate messaging service. Use the checkbox in the account editor to enable the current account. |
| 9 | |
| 10 | === How do I change the font Pidgin uses? The background color? === |
| 11 | The font preference in Pidgin applies only for the formatting of outgoing messages on those protocols which support said formatting. The display fonts used by the rest of Pidgin are those specified by GTK+, the toolkit we use to create the user interface. To change this font, you need to edit your `~/.gtkrc-2.0` file. On Windows, this file is located at `C:\Documents and Settings\username\.themes\Default\gtk-2.0\gtkrc`. If that file does not exist, simply create it. |
| 12 | |
| 13 | As an example, you can put this into `.gtkrc-2.0` to change the font size for all GTK+ applications: |
| 14 | {{{ |
| 15 | # Sets the font used by all gtk applications. |
| 16 | gtk-font-name = "Verdana 9" |
| 17 | }}} |
| 18 | |
| 19 | Alternatively, you can do this to change the font size for other elements: |
| 20 | {{{ |
| 21 | # This is the style section. You need this for the examples below. |
| 22 | # If you are going to copy the example, copy the entire block, |
| 23 | # including the "{" and "}" lines. |
| 24 | style "imhtml-fix" |
| 25 | { |
| 26 | font_name = "Sans 10" |
| 27 | } |
| 28 | |
| 29 | # This will apply the font style just shown to various components. |
| 30 | # If you are going to copy the example, copy the line that does |
| 31 | # what you want. |
| 32 | |
| 33 | # Conversation entry box--where you type. |
| 34 | widget "*pidgin_conv_entry" style "imhtml-fix" |
| 35 | |
| 36 | # Conversation history pane--where you read the conversation. |
| 37 | widget "*pidgin_conv_imhtml" style "imhtml-fix" |
| 38 | |
| 39 | # Log viewer--where you read stored logs |
| 40 | widget "*pidgin_log_imhtml" style "imhtml-fix" |
| 41 | |
| 42 | # formatting-capable entry areas (IMHtml widgets) in request dialogs |
| 43 | widget "*pidgin_request_imhtml" style "imhtml-fix" |
| 44 | |
| 45 | # formatting-capable notification areas in dialogs (again, IMHtml widgets) |
| 46 | widget "*pidgin_notify_imhtml" style "imhtml-fix" |
| 47 | }}} |
| 48 | |
| 49 | Background colors can be changed similarly, by finding the correct widget names and setting appropriate bg elements. Other widgets in Pidgin can be controlled in a similar manner. |
| 50 | |
| 51 | You could also switch GTK+ themes. Themes and information on using them can be found at http://themes.freshmeat.net, http://art.gnome.org, or by searching on your favorite search engine, such as Google. |
| 102 | |
| 103 | === Why are the status icons so big? === |
| 104 | We believe that, by adding a second line of text to each buddy list entry, we're able to show more information about each buddy on the buddy list. The "Big List," as we call it, shows status text and idle time concisely and attractively. Most importantly, it puts the buddy icon in the list, making it far easier to locate buddies within a large list where names are harder to pick out than images. Due to the increased usability of this interface, we have made it the default. |
| 105 | |
| 106 | We are aware that some people feel more comfortable using an interface more similar to IM clients they may have used in the past. The 'Big List' can be disabled by un-checking "Show buddy details" in the Buddies menu. |
| 107 | |
| 108 | === How do I get sound to work correctly? === |
| 109 | Pidgin uses gstreamer to play sounds. Playing sounds directly through esound or arts is no longer supported. To compile Pidgin with support for gstreamer you need libgstreamer0.10-dev and its dependencies. These packages are named differently on different platforms. If you do not wish to install these packages you can also just change your sound playing method in preferences to `Command` and use `esdplay %s` or `artsplay %s`. |
| 110 | |
| 111 | === How do I make Pidgin use ALSA or OSS for playing sounds? What does the "Automatic" option do? === |
| 112 | The "Automatic" option lets gstreamer pick how the sounds are played. You can use the `gstreamer-properties` tool to control this if you use GNOME. |